home *** CD-ROM | disk | FTP | other *** search
/ Aminet 12 / Aminet 12 (1996)(GTI - Schatztruhe)[!][Jun 1996].iso / Aminet / dev / e / eiffel.lha / flc / docs / numeric.doc < prev    next >
Encoding:
Text File  |  1996-01-25  |  601 b   |  23 lines

  1.  
  2. -- Objects amenable to basic arithmetic operation
  3.  
  4. deferred class interface NUMERIC
  5. exported features
  6.   infix "+" (other:NUMERIC):NUMERIC
  7.       -- Sum of current object and 'other'
  8.     deferred
  9.   infix "-" (other:NUMERIC):NUMERIC
  10.       -- Difference between current object and 'other'
  11.     deferred
  12.   infix "*" (other:NUMERIC):NUMERIC
  13.       -- Product of current object by 'other'
  14.     deferred
  15.   prefix "+":NUMERIC
  16.       -- Unary addition applied to current object
  17.     deferred
  18.   prefix "-":NUMERIC
  19.       -- Unary substraction applied to current object
  20.     deferred
  21. end interface  -- class 'NUMERIC'
  22.  
  23.